9ef24685a0baaf16743a0e3fa5a719f42780a4fe,Frameworks/PlugIns/PostgresqlPlugIn/Sources/com/webobjects/jdbcadaptor/PostgresqlSynchronizationFactory.java,PostgresqlSynchronizationFactory,schemaCreationStatementsForEntities,#NSArray#NSDictionary#,517
Before Change
/* 922*/ if(adminCommentsNeeded)
/* 923*/ result.addObject(_expressionForString("/* connect as an administrator */"));
/* 926*/ if(dropDatabaseStatements != null)
/* 927*/ result.addObjectsFromArray(dropDatabaseStatements);
/* 930*/ if(createDatabaseStatements != null)
/* 931*/ result.addObjectsFromArray(createDatabaseStatements);
/* 934*/ if(adminCommentsNeeded)
/* 935*/ result.addObject(_expressionForString("/* connect as the user from the connection dictionary */"));
}
/* 939*/ if(_NSDictionaryUtilities.boolValueForKeyDefault(options, "dropPrimaryKeySupport", true))
{
After Change
result.addObject(_expressionForString("/* connect as an administrator */"));
}
if (dropDatabaseStatements != null) {
result.addObjectsFromArray(dropDatabaseStatements);
}
if (createDatabaseStatements != null) {
result.addObjectsFromArray(createDatabaseStatements);
}
if (adminCommentsNeeded) {
result.addObject(_expressionForString("/* connect as the user from the connection dictionary */"));
}
}
if (_NSDictionaryUtilities.boolValueForKeyDefault(options, "dropPrimaryKeySupport", true)) {